home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Secret Service 52a
/
SSERVCD_52A.iso
/
Demos
/
DarkR
/
dkrdemo.exe
/
Dark Reign
/
DATA
/
DARK
/
AIP
/
FGEVEN.FSM
< prev
next >
Wrap
Text File
|
1997-10-27
|
720b
|
43 lines
;
; AI Conditional FSM for freedom guard teams
;
DefineAICondTree()
{
Description("FG: This AI will attack and defend with all unit types")
;
; Conditional State #1
;
DefineCondState()
{
DefineCondition(2 0 0 50 "youwin1.txt")
{
CritTimer(14000)
}
SetAIPFile(FGEven1.aip)
}
;
; Conditional State #2
;
DefineCondState()
{
DefineCondition(3 0 0 50 "youwin1.txt")
{
CritLessUnitsThanEnemy(100)
}
SetAIPFile(FGEven1.aip)
}
;
; Conditional State #3
;
DefineCondState()
{
DefineCondition(2 0 0 50 "youwin1.txt")
{
CritMoreUnitsThanEnemy(150)
}
SetAIPFile(FGEven2.aip)
}
}